home *** CD-ROM | disk | FTP | other *** search
Text File | 1992-09-02 | 830 b | 25 lines | [TEXT/CCL2] |
- (in-package cl-user)
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
- ;; load-menus-old.lisp
- ;;
- ;; Copyright © 1992 University of Toronto, Department of Computer Science
- ;; All Rights Reserved
- ;;
- ;; author: Mark A. Tapia
- ;;
- ;; Edit this file and change the directory structure if the
- ;; menu enhancements are not stored in the "menu enhancements" folder
- ;; in the main CCL directory.
- ;;
- ;; Load this file when running MCL2.0b1
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
- (defparameter mcl-final nil)
- (defparameter menu-dir nil)
- (def-logical-directory "menu-dir" "ccl;menu enhancements")
- (setq menu-dir "menu-dir;")
- (load (format nil "~amake-menus.lisp" menu-dir))
- (set-mac-default-directory (mac-directory-namestring menu-dir))
-
- (use-package 'menus)
- (menus::load-menus)
-